home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / usenet / sources / volume2 / util / wns / Makefile next >
Makefile  |  1988-10-20  |  675b  |  28 lines

  1. # Makefile for wns
  2. #
  3. CC = cc
  4.  
  5. # Define in CFLAGS:
  6. #    SYSINC    if include file hierarchy includes the sys/ directory
  7. #    REGEX    if using berkeley-style re_exec() and re_comp()
  8. #    REGCMP    if using regcmp() and regex()
  9. #    REGCOMP if using regcomp() and regexec()
  10. #    OS_UNIX if running under unix (or AmigaDOS)
  11. #    AMIGA   if running under AmigaDOS
  12. #    OS_CPM    if running under CP/M80
  13. #    STRCSPN if you need the strcspn() function.
  14. #
  15. #
  16. #CFLAGS=-DOS_UNIX -DREGCMP -DSYSINC
  17. CFLAGS=-DOS_UNIX -DAMIGA -DREGCOMP -DSTRCSPN -n
  18. #
  19. # Define LIBS to reflect the librar[y][ies] needed to fetch the r/e routines.
  20. #
  21. LIBS=-lc
  22.  
  23. #
  24. WNSOBJS=wns.o regexp.o regerror.o
  25.  
  26. wns:    $(WNSOBJS)
  27.     ln $(WNSOBJS) $(LIBS) -o wns
  28.